home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DJLSR106.ARJ / STRLWR.C < prev    next >
C/C++ Source or Header  |  1992-03-02  |  174b  |  14 lines

  1. #include <string.h>
  2.  
  3. char *strlwr(char *s)
  4. {
  5.   char *p = s;
  6.   while (*s)
  7.   {
  8.     if ((*s >= 'A') && (*s <= 'Z'))
  9.       *s += 'a'-'A';
  10.     s++;
  11.   }
  12.   return p;
  13. }
  14.